home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1995 March / Macworld CD-ROM (March 1995).cdr / Updaters / AppMaker 1.5.2->1.5.4 / Libraries / THINK / AMClassLibC / CAMStaticText.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-24  |  643 b   |  27 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  CAMStaticText.h
  3.  
  4.         Interface for CAMStaticText.c
  5.         
  6.         SUPERCLASS = CAMEditText
  7.         
  8.         Copyright © 1991 Bowers Development Corporation. All rights reserved.
  9.         
  10.  ******************************************************************************/
  11.  
  12. #pragma once
  13.  
  14. #include "CAMEditText.h"
  15.  
  16. class CAMStaticText : public CAMEditText {
  17.  
  18. public:
  19.     void    IViewTemp                (CView            *anEnclosure,
  20.                                       CBureaucrat    *aSupervisor,
  21.                                      Ptr            viewData);        // is override
  22.  
  23. };    /* CAMStaticText */
  24.  
  25. typedef AMEditTextTemp AMStaticTextTemp, *AMStaticTextTempP, **AMStaticTextTempH;
  26.  
  27.